home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung CD 2 (Tewi)(1994).iso / c / compiler / small_c / byte_sc / pad.c < prev    next >
Text File  |  1987-10-04  |  256b  |  9 lines

  1. #define NOCCARGC  /* no argument count passing */
  2. /*
  3. ** Place n occurrences of ch at dest.
  4. */
  5. pad(dest, ch, n) char *dest, *n; int ch; {
  6.   /* n is a fake unsigned integer */
  7.   while(n--) *dest++ = ch;
  8.   }
  9.